hysop.methods module¶
A list of authorized keys that may be used to set methods in operators.
Usage¶
method = {key: value, …}
Key must be one of the constants given below. Value is usually a class name. See details in each operator.
You can fetch available operator method keys by using operator.available_methods(). This will return a distionnary with all the possible configurations.
Default methods can be retrived with operator.default_methods()
Example
For the stretching case, you may use:
method = {TimeIntegrator: RK3, Formulation: Conservative,
SpaceDiscretization: FDC4}